home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global gCalNum, gSetNum, gLastNum, gOperation, gAnswer
- if gOperation = EMPTY then
- exit
- end if
- if gOperation = "+" then
- set lNum to gCalNum * gSetNum * 0.01
- set gCalNum to lNum
- set gCalNum to gCalNum + gSetNum
- else
- if gOperation = "-" then
- set lNum to gCalNum * gSetNum * 0.01
- set gCalNum to lNum
- set gCalNum to gSetNum - gCalNum
- else
- if gOperation = "/" then
- set lNum to gSetNum * 100 * 1.0 / gCalNum
- set gCalNum to lNum
- else
- if gOperation = "*" then
- set lNum to gCalNum * gSetNum * 0.01
- set gCalNum to lNum
- end if
- end if
- end if
- end if
- set the itemDelimiter to "."
- set lText1 to item 1 of string(gCalNum)
- set lText2 to item 2 of string(gCalNum)
- if value(lText2) = 0 then
- set gCalNum to integer(gCalNum)
- end if
- if the number of chars in lText1 > 9 then
- error()
- abort()
- end if
- set the itemDelimiter to ","
- set gSetNum to gCalNum
- set gOperation to EMPTY
- DrawNum()
- set gCalNum to 0
- set gAnswer to 1
- end
-